home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / mint / shells / bashsrc.zoo / siglist.c < prev    next >
C/C++ Source or Header  |  1991-06-05  |  4KB  |  181 lines

  1. /* siglist.c -- signal list for those machines that don't have one. */
  2.  
  3. /* Copyright (C) 1989 Free Software Foundation, Inc.
  4.  
  5. This file is part of GNU Bash, the Bourne Again SHell.
  6.  
  7. Bash is free software; you can redistribute it and/or modify it under
  8. the terms of the GNU General Public License as published by the Free
  9. Software Foundation; either version 1, or (at your option) any later
  10. version.
  11.  
  12. Bash is distributed in the hope that it will be useful, but WITHOUT ANY
  13. WARRANTY; without even the implied warranty of MERCHANTABILITY or
  14. FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  15. for more details.
  16.  
  17. You should have received a copy of the GNU General Public License along
  18. with Bash; see the file COPYING.  If not, write to the Free Software
  19. Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
  20.  
  21. #include <sys/signal.h>
  22.  
  23. #ifndef NSIG
  24. #  define NSIG 64
  25. #endif
  26.  
  27. char *sys_siglist[NSIG];
  28.  
  29. initialize_siglist ()
  30. {
  31.   register int i;
  32.  
  33.   for (i = 0; i < NSIG; i++)
  34.     sys_siglist[i] = (char *)0x0;
  35.  
  36.   sys_siglist[0] = "Bogus signal";
  37.  
  38. #if defined (SIGHUP)
  39.   sys_siglist[SIGHUP] = "Hangup";
  40. #endif
  41.  
  42. #if defined (SIGINT)
  43.   sys_siglist[SIGINT] = "Interrupt";
  44. #endif
  45.  
  46. #if defined (SIGQUIT)
  47.   sys_siglist[SIGQUIT] = "Quit";
  48. #endif
  49.  
  50. #if defined (SIGILL)
  51.   sys_siglist[SIGILL] = "Illegal instruction";
  52. #endif
  53.  
  54. #if defined (SIGTRAP)
  55.   sys_siglist[SIGTRAP] = "BPT trace/trap";
  56. #endif
  57.  
  58. #if defined (SIGIOT) && !defined (SIGABRT)
  59. #define SIGABRT SIGIOT
  60. #endif
  61.  
  62. #if defined (SIGABRT)
  63.   sys_siglist[SIGABRT] = "ABORT instruction";
  64. #endif
  65.  
  66. #if defined (SIGEMT)
  67.   sys_siglist[SIGEMT] = "EMT instruction";
  68. #endif
  69.  
  70. #if defined (SIGFPE)
  71.   sys_siglist[SIGFPE] = "Floating point exception";
  72. #endif
  73.  
  74. #if defined (SIGKILL)
  75.   sys_siglist[SIGKILL] = "Killed";
  76. #endif
  77.  
  78. #if defined (SIGBUS)
  79.   sys_siglist[SIGBUS] = "Bus error";
  80. #endif
  81.  
  82. #if defined (SIGSEGV)
  83.   sys_siglist[SIGSEGV] = "Segmentation fault";
  84. #endif
  85.  
  86. #if defined (SIGSYS)
  87.   sys_siglist[SIGSYS] = "Bad system call";
  88. #endif
  89.  
  90. #if defined (SIGPIPE)
  91.   sys_siglist[SIGPIPE] = "Broken pipe";
  92. #endif
  93.  
  94. #if defined (SIGALRM)
  95.   sys_siglist[SIGALRM] = "Alarm clock";
  96. #endif
  97.  
  98. #if defined (SIGTERM)
  99.   sys_siglist[SIGTERM] = "Terminated";
  100. #endif
  101.  
  102. #if defined (SIGURG)
  103.   sys_siglist[SIGURG] = "Urgent IO condition";
  104. #endif
  105.  
  106. #if defined (SIGSTOP)
  107.   sys_siglist[SIGSTOP] = "Stopped (signal)";
  108. #endif
  109.  
  110. #if defined (SIGTSTP)
  111.   sys_siglist[SIGTSTP] = "Stopped";
  112. #endif
  113.  
  114. #if defined (SIGCONT)
  115.   sys_siglist[SIGCONT] = "Continue";
  116. #endif
  117.  
  118. #if !defined (SIGCHLD) && defined (SIGCLD)
  119. #define SIGCHLD SIGCLD
  120. #endif
  121.  
  122. #if defined (SIGCHLD)
  123.   sys_siglist[SIGCHLD] = "Child death or stop";
  124. #endif
  125.  
  126. #if defined (SIGTTIN)
  127.   sys_siglist[SIGTTIN] = "Stopped (tty input)";
  128. #endif
  129.  
  130. #if defined (SIGTTOU)
  131.   sys_siglist[SIGTTOU] = "Stopped (tty output)";
  132. #endif
  133.  
  134. #if defined (SIGIO)
  135.   sys_siglist[SIGIO] = "I/O ready";
  136. #endif
  137.  
  138. #if defined (SIGXCPU)
  139.   sys_siglist[SIGXCPU] = "CPU limit";
  140. #endif
  141.  
  142. #if defined (SIGXFSZ)
  143.   sys_siglist[SIGXFSZ] = "File limit";
  144. #endif
  145.  
  146. #if defined (SIGVTALRM)
  147.   sys_siglist[SIGVTALRM] = "Alarm (virtual)";
  148. #endif
  149.  
  150. #if defined (SIGPROF)
  151.   sys_siglist[SIGPROF] = "Alarm (profile)";
  152. #endif
  153.  
  154. #if defined (SIGWINCH)
  155.   sys_siglist[SIGWINCH] = "Window changed";
  156. #endif
  157.  
  158. #if defined (SIGLOST)
  159.   sys_siglist[SIGLOST] = "Record lock";
  160. #endif
  161.  
  162. #if defined (SIGUSR1)
  163.   sys_siglist[SIGUSR1] = "User signal 1";
  164. #endif
  165.  
  166. #if defined (SIGUSR2)
  167.   sys_siglist[SIGUSR2] = "User signal 2";
  168. #endif
  169.  
  170.   for (i = 0; i < NSIG; i++)
  171.     {
  172.       if (!sys_siglist[i])
  173.     {
  174.       sys_siglist[i] =
  175.         (char *)xmalloc (10 + strlen ("Unknown Signal #"));
  176.  
  177.       sprintf (sys_siglist[i], "Unknown Signal #%d", i);
  178.     }
  179.     }
  180. }
  181.